| Description | The open() command opens a file specified by the path parameter. The open() command can be used in two ways: open(path).read(), which returns the file's text content as a string, or, alternatively, open(path).readlines(), which returns a list of text lines. Note:NodeBox looks for files relative to the current .py file. However, if you haven't saved your file first, NodeBox doesn't know where to look. Make sure you save the script first before you run it, otherwise NodeBox won't be able to find your file.
|